home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 125 / Computer Shopper CD-ROM Issue 125 (1998-07)(Dennis Publishing).iso / Business / Dazzler / DAZZLER.Z / CPathData.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-11-26  |  472 b   |  11 lines

  1. import java.awt.Point;
  2.  
  3. class CPathData {
  4.    public boolean bLooped = false;
  5.    public Point ptNew = new Point(0, 0);
  6.    public int nCurrentPt = 0;
  7.    public int nDistance = 0;
  8.    public int nBezierPt = 0;
  9.    public int nBezierSteps = 0;
  10. }
  11.